Insert into <HEAD> of your document.
<SCRIPT LANGUAGE="JAVASCRIPT"><!-- hide //-------------------------------------------------- // Copyright Reaz Hoque, 1996, All right reserved // This code can be used for non-profit use only if // the copyright notice is kept. //--------------------------------------------------- function customize(form) { var address = document.form1.url.value; var op_tool = (document.form1.tool.checked== true) ? 1 : 0; var op_loc_box = (document.form1.loc_box.checked == true) ? 1 : 0; var op_dir = (document.form1.dir.checked == true) ? 1 : 0; var op_stat = (document.form1.stat.checked == true) ? 1 : 0; var op_menu = (document.form1.menu.checked == true) ? 1 : 0; var op_scroll = (document.form1.scroll.checked == true) ? 1 : 0; var op_resize = (document.form1.resize.checked == true) ? 1 : 0; var op_wid = document.form1.wid.value; var op_heigh = document.form1.heigh.value; var option = "toolbar=" + op_tool + ",location=" + op_loc_box + ",directories=" + op_dir + ",status=" + op_stat + ",menubar=" + op_menu + ",scrollbars=" + op_scroll + ",resizeable=" + op_resize + ",width=" + op_wid + ",height=" + op_heigh; var win3 = window.open("", "what_I_want", option); var win4 = window.open(address, "what_I_want"); } function clear(form){ document.form1.wid.value=""; document.form1.heigh.value=""; } // done hiding --> </SCRIPT>
Insert into <BODY> of your document.
<CENTER> <TABLE cellpadding=5 border><TR><TD><PRE> <FORM name=form1 ACTION="javascript:" METHOD="POST"> <INPUT TYPE="text" SIZE= "30" NAME="url" value="http://" >: URL <INPUT TYPE="checkbox" NAME="tool">: Toolbar <INPUT TYPE="checkbox" NAME="loc_box">: Location <INPUT TYPE="checkbox" NAME="dir">: Directories <INPUT TYPE="checkbox" NAME="stat">: Status <INPUT TYPE="checkbox" NAME="menu">: Menubar <INPUT TYPE="checkbox" NAME="scroll">: Scrollbars <INPUT TYPE="checkbox" NAME="resize">: Resizable <INPUT TYPE="text" NAME="wid" value="500">: Width <INPUT TYPE="text" NAME="heigh" value="200">: Height <BR><CENTER> <INPUT TYPE="button" SIZE="10" VALUE=" ENTER " OnClick="customize(this.form)"> <INPUT TYPE="reset" SIZE="10" VALUE=" RESET " onClick="clear(this.form)"> </PRE></TD></TR></TABLE> </FORM> </CENTER>
: URL : Toolbar : Location : Directories : Status : Menubar : Scrollbars : Resizable : Width : Height
1998 Copyright (C) Next Step All Rights Reserved